home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / lingua / project1.dpr < prev    next >
Text File  |  1995-12-22  |  1KB  |  35 lines

  1. program Project1;
  2. (***************************************************************************)
  3. (*                                                                         *)
  4. (*   #####    #####     #####   #####    #####    ####    ######  #######  *)
  5. (*  #        #     #   #          #     #        #    #   #          #     *)
  6. (*  #        #     #   #  ###     #      ####    #    #   ###        #     *)
  7. (*  #        #     #   #    #     #          #   #    #   #          #     *)
  8. (*   #####    #####     #####   #####   #####     ####    #          #     *)
  9. (*                                                                         *)
  10. (***************************************************************************)
  11. {
  12.  (c) 1995 Cogisoft
  13.  This component is FREE distribution. Use it for your own utilization.
  14.  But you can't sell an application, using this component, without the
  15.  authorization of Cogisoft.
  16.  
  17.  COGISOFT,H⌠tel de MΘziΦres,19 rue Michel Le Comte,75003 PARIS,FRANCE
  18.  Tel:(1)40-65-04-04, FAX:(1)42-72-27-87
  19.  
  20.  NO CODING !!!
  21.  Jerome VOLLET, CompuServe : 100560,3342
  22. }
  23. uses
  24.   Forms,
  25.   Unit1 in 'UNIT1.PAS' {Form1},
  26.   Unit2 in 'UNIT2.PAS' {AboutBox};
  27.  
  28. {$R *.RES}
  29.  
  30. begin
  31.   Application.CreateForm(TForm1, Form1);
  32.   Application.CreateForm(TAboutBox, AboutBox);
  33.   Application.Run;
  34. end.
  35.